home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 6_17.lha / 6_17 / makefile < prev    next >
Makefile  |  1993-08-08  |  610b  |  27 lines

  1. FLAGS= -I.
  2. C= CC -I. -I../../CC
  3. RROR= ../../error.o
  4.  
  5. ll: tst
  6.  
  7. st: tst.o vectorall.o makefile
  8. $(CC) $(CFLAGS) tst.o vectorall.o -o tst $(ERROR)
  9.  
  10. st.o: tst.c 6_17a.h 6_17a0.h
  11.  
  12. ectorall.o: 6_17a.h 6_17a0.h 6_17a1.c 6_17a10.c 6_17a11.c \
  13. 6_17a12.c 6_17a13.c 6_17a14.c 6_17a15.c 6_17a16.c \
  14. 6_17a17.c 6_17a18.c 6_17a19.c 6_17a2.c 6_17a20.c \
  15. 6_17a21.c 6_17a22.c 6_17a23.c 6_17a24.c 6_17a25.c \
  16. 6_17a26.c 6_17a27.c 6_17a28.c 6_17a3.c 6_17a4.c \
  17. 6_17a5.c 6_17a6.c 6_17a7.c 6_17a8.c 6_17a9.c vectorall.c
  18.  
  19. MP= tst.cmp
  20. UT= tst.out
  21.  
  22. st.out: tst ;    tst > tst.out
  23.  
  24. est: all $(OUT) $(CMP)
  25. cmp tst.out tst.cmp
  26. echo tests done
  27.